
        /* ================================================================
        متغیرهای اصلی
        ================================================================ */
        :root {
            --primary: #8B6914;
            --primary-light: #D4AF37;
            --primary-dark: #6B520F;
            --secondary: #2C5F2D;
            --secondary-light: #4A7C4B;
            --accent: #97BC62;
            --bg-base: #FDFCF8;
            --bg-card: #FFFFFF;
            --bg-alt: #F5F1E6;
            --text-main: #1A1A1A;
            --text-muted: #5A5A5A;
            --text-light: #888888;
            --border: #E8E4D9;
            --border-light: #F0ECE1;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
            --radius: 20px;
            --radius-sm: 12px;
            --radius-lg: 24px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --transition-fast: all 0.2s ease;
            --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ================================================================
        ریست و پایه
        ================================================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Vazirmatn', sans-serif;
            background: var(--bg-base);
            color: var(--text-main);
            line-height: 1.7;
            overflow-x: hidden;
            font-size: 16px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        ul {
            list-style: none;
        }

        #header-placeholder,
        #footer-placeholder {
            width: 100%;
        }

        /* ================================================================
        بردکرامب (Breadcrumb)
        ================================================================ */
        .breadcrumb-section {
            background: var(--bg-alt);
            padding: 1.2rem 2rem;
            border-bottom: 1px solid var(--border);
            margin-top: 85px;
        }

        .breadcrumb {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--primary);
            font-weight: 500;
        }

        .breadcrumb a:hover {
            color: var(--primary-dark);
        }

        .breadcrumb .separator {
            color: var(--text-light);
            font-size: 0.75rem;
        }

        .breadcrumb .current {
            color: var(--text-main);
            font-weight: 600;
        }

        /* ================================================================
        Hero بخش طراحی وب
        ================================================================ */
        .webdesign-hero {
            position: relative;
            padding: 6rem 2rem 5rem;
            background: linear-gradient(135deg, var(--bg-base) 0%, var(--bg-alt) 50%, rgba(212, 175, 55, 0.05) 100%);
            overflow: hidden;
        }

        .webdesign-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -20%;
            width: 60%;
            height: 120%;
            background: radial-gradient(circle, rgba(139, 105, 20, 0.04) 0%, transparent 70%);
            z-index: 0;
        }

        .webdesign-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -15%;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle, rgba(44, 95, 45, 0.03) 0%, transparent 70%);
            z-index: 0;
        }

        .webdesign-hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .webdesign-hero-content {
            animation: fadeInRight 0.8s ease-out;
        }

        .webdesign-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(139, 105, 20, 0.08);
            border: 1px solid rgba(139, 105, 20, 0.2);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .webdesign-badge i {
            font-size: 1rem;
        }

        .webdesign-hero h1 {
            font-size: clamp(2rem, 4.5vw, 3.2rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--text-main);
        }

        .webdesign-hero h1 .highlight {
            color: var(--primary);
            position: relative;
        }

        .webdesign-hero h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            right: 0;
            width: 100%;
            height: 10px;
            background: rgba(212, 175, 55, 0.2);
            border-radius: 5px;
            z-index: -1;
        }

        .webdesign-hero-desc {
            font-size: 1.15rem;
            color: var(--text-muted);
            line-height: 1.9;
            margin-bottom: 2rem;
            max-width: 520px;
        }

        .webdesign-hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 2.5rem;
        }

        .hero-feature-tag {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: white;
            border: 1px solid var(--border);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--text-main);
            font-weight: 500;
        }

        .hero-feature-tag i {
            color: var(--secondary);
            font-size: 0.9rem;
        }

        .webdesign-hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            padding: 1rem 2rem;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-family: inherit;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 20px rgba(139, 105, 20, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(139, 105, 20, 0.45);
            background: var(--primary-dark);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-4px);
        }

        .webdesign-hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeInLeft 0.8s ease-out;
        }

        .hero-mockup-wrapper {
            position: relative;
            width: 100%;
            max-width: 500px;
        }

        .hero-mockup {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow-hover);
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }

        .hero-mockup-wrapper:hover .hero-mockup {
            transform: scale(1.02) rotate(-1deg);
        }

        .mockup-bg-shape {
            position: absolute;
            border-radius: var(--radius);
            z-index: 1;
        }

        .mockup-bg-1 {
            width: 90%;
            height: 85%;
            background: linear-gradient(135deg, var(--bg-alt), #E8E4D9);
            top: 20px;
            left: -15px;
            animation: floatShape 6s ease-in-out infinite;
        }

        .mockup-bg-2 {
            width: 80%;
            height: 75%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), transparent);
            bottom: -10px;
            right: -10px;
            animation: floatShape 6s ease-in-out infinite reverse;
        }

        .floating-tech-badge {
            position: absolute;
            background: white;
            padding: 0.7rem 1.2rem;
            border-radius: 14px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            font-size: 0.85rem;
            z-index: 3;
            animation: bounceBadge 3s ease-in-out infinite;
        }

        .floating-tech-badge i {
            font-size: 1.1rem;
        }

        .tech-badge-1 {
            top: 8%;
            left: -8%;
            animation-delay: 0s;
        }

        .tech-badge-1 i { color: #E44D26; }

        .tech-badge-2 {
            top: 35%;
            right: -10%;
            animation-delay: -1s;
        }

        .tech-badge-2 i { color: #61DAFB; }

        .tech-badge-3 {
            bottom: 12%;
            left: -5%;
            animation-delay: -2s;
        }

        .tech-badge-3 i { color: #68A063; }

        .tech-badge-4 {
            bottom: 35%;
            right: -12%;
            animation-delay: -0.5s;
        }

        .tech-badge-4 i { color: #2563eb; }

        /* ================================================================
        بخش سرپرست / معرفی مسئول
        ================================================================ */
        .supervisor-section {
            padding: 5rem 2rem;
            background: var(--bg-card);
        }

        .supervisor-container {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 4rem;
            align-items: center;
            background: linear-gradient(135deg, var(--bg-alt) 0%, white 100%);
            border-radius: var(--radius-lg);
            padding: 3rem;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .supervisor-container::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--primary-light), var(--accent));
        }

        .supervisor-avatar-wrapper {
            position: relative;
        }

        .supervisor-avatar {
            width: 190px;
            height: 190px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary-light);
            box-shadow: 0 8px 30px rgba(139, 105, 20, 0.2);
        }

        .supervisor-badge {
            position: absolute;
            bottom: 5px;
            right: 5px;
            background: var(--secondary);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            border: 3px solid white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .supervisor-info h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.3rem;
            color: var(--text-main);
        }

        .supervisor-title {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(139, 105, 20, 0.08);
            color: var(--primary);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .supervisor-desc {
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .supervisor-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .supervisor-stat {
            text-align: center;
        }

        .supervisor-stat-value {
            display: block;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
        }

        .supervisor-stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ================================================================
        بخش خدمات طراحی وب
        ================================================================ */
        .webdesign-services {
            padding: 6rem 2rem;
            background: var(--bg-alt);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-tag {
            display: inline-block;
            background: rgba(139, 105, 20, 0.08);
            color: var(--primary);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid rgba(139, 105, 20, 0.15);
        }

        .section-header h2 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 2.2rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid var(--border);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(to bottom, var(--primary), var(--primary-light));
            transition: height 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--bg-alt), white);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.4rem;
            font-size: 1.6rem;
            color: var(--primary);
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            transform: rotate(8deg) scale(1.1);
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ================================================================
        بخش فرآیند کار (Process)
        ================================================================ */
        .process-section {
            padding: 6rem 2rem;
            background: var(--bg-card);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
        }

        .process-grid::before {
            content: '';
            position: absolute;
            top: 50px;
            right: 10%;
            left: 10%;
            height: 3px;
            background: linear-gradient(to left, var(--primary), var(--primary-light), var(--accent), var(--secondary));
            border-radius: 3px;
            z-index: 0;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .process-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            margin: 0 auto 1.2rem;
            box-shadow: 0 8px 25px rgba(139, 105, 20, 0.3);
            border: 4px solid white;
        }

        .process-step h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .process-step p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ================================================================
        بخش تکنولوژی‌ها (Technologies)
        ================================================================ */
        .tech-section {
            padding: 5rem 2rem;
            background: var(--bg-alt);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .tech-item {
            background: white;
            border-radius: var(--radius-sm);
            padding: 1.5rem 1rem;
            text-align: center;
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .tech-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--primary-light);
        }

        .tech-item i {
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
            display: block;
        }

        .tech-item span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-muted);
        }

        .tech-item:nth-child(1) i { color: #E44D26; }
        .tech-item:nth-child(2) i { color: #1572B6; }
        .tech-item:nth-child(3) i { color: #F7DF1E; }
        .tech-item:nth-child(4) i { color: #61DAFB; }
        .tech-item:nth-child(5) i { color: #000000; }
        .tech-item:nth-child(6) i { color: #68A063; }
        .tech-item:nth-child(7) i { color: #3776AB; }
        .tech-item:nth-child(8) i { color: #339933; }

        /* ================================================================
        بخش پکیج‌ها (Packages)
        ================================================================ */
        .packages-section {
            padding: 6rem 2rem;
            background: var(--bg-card);
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .package-card {
            background: var(--bg-base);
            border-radius: var(--radius);
            padding: 2.5rem;
            border: 2px solid var(--border);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .package-card.featured {
            border-color: var(--primary);
            transform: scale(1.03);
        }

        .package-card.featured::before {
            content: 'پیشنهاد ویژه';
            position: absolute;
            top: 20px;
            left: -30px;
            background: var(--primary);
            color: white;
            padding: 0.3rem 2.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            transform: rotate(45deg);
        }

        .package-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }

        .package-card.featured:hover {
            transform: scale(1.03) translateY(-8px);
        }

        .package-header {
            text-align: center;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border);
            margin-bottom: 1.5rem;
        }

        .package-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .package-price {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
        }

        .package-price small {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text-muted);
        }

        .package-features {
            margin-bottom: 2rem;
        }

        .package-features li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.6rem 0;
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        .package-features li i {
            color: var(--secondary);
            font-size: 1rem;
        }

        .package-features li.disabled {
            opacity: 0.4;
        }

        .package-features li.disabled i {
            color: var(--text-light);
        }

        .package-btn {
            width: 100%;
            padding: 1rem;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            font-family: inherit;
        }

        .package-btn:hover {
            background: var(--primary);
            color: white;
        }

        .package-card.featured .package-btn {
            background: var(--primary);
            color: white;
        }

        .package-card.featured .package-btn:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
        }

        /* ================================================================
        بخش نمونه‌کارها (Portfolio)
        ================================================================ */
        .portfolio-section {
            padding: 6rem 2rem;
            background: var(--bg-alt);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .portfolio-item {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            aspect-ratio: 16/10;
            background: linear-gradient(135deg, var(--bg-alt), #E8E4D9);
        }

        .portfolio-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .portfolio-item:hover img {
            transform: scale(1.05);
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
            padding: 2rem 1.5rem 1.5rem;
            transform: translateY(100%);
            transition: var(--transition);
        }

        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }

        .portfolio-overlay h3 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }

        .portfolio-overlay p {
            color: rgba(255,255,255,0.8);
            font-size: 0.85rem;
        }

        /* ================================================================
        🆕 بخش معرفی دوره آموزش طراحی وب
        ================================================================ */
        .course-intro-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--bg-base) 0%, var(--bg-alt) 100%);
            position: relative;
            overflow: hidden;
        }

        .course-intro-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .course-intro-visual {
            position: relative;
        }

        .course-mockup-wrapper {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }

        .course-mockup-bg {
            position: absolute;
            width: 90%;
            height: 85%;
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
            border-radius: var(--radius);
            top: 20px;
            right: -15px;
            opacity: 0.2;
            animation: floatShape 6s ease-in-out infinite;
        }

        .course-mockup {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow-hover);
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }

        .course-mockup-wrapper:hover .course-mockup {
            transform: scale(1.02) rotate(1deg);
        }

        .course-floating-badge {
            position: absolute;
            background: white;
            padding: 0.8rem 1.2rem;
            border-radius: 16px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-weight: 700;
            z-index: 3;
            animation: bounceBadge 3s ease-in-out infinite;
        }

        .course-floating-badge i {
            font-size: 1.3rem;
            color: var(--primary);
        }

        .course-floating-badge .badge-value {
            display: block;
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 800;
        }

        .course-floating-badge .badge-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .course-badge-1 {
            top: 10%;
            right: -8%;
            animation-delay: 0s;
        }

        .course-badge-2 {
            bottom: 20%;
            left: -10%;
            animation-delay: -1s;
        }

        .course-badge-3 {
            bottom: -5%;
            right: 15%;
            animation-delay: -2s;
            font-size: 0.85rem;
        }

        .course-intro-content .section-tag {
            margin-bottom: 1rem;
        }

        .course-intro-content h2 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 800;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }

        .course-intro-content h2 .highlight {
            color: var(--primary);
            position: relative;
        }

        .course-intro-content h2 .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            right: 0;
            width: 100%;
            height: 10px;
            background: rgba(212, 175, 55, 0.2);
            border-radius: 5px;
            z-index: -1;
        }

        .course-lead {
            font-size: 1.15rem;
            color: var(--text-main);
            font-weight: 500;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .course-desc {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.9;
            margin-bottom: 2rem;
        }

        .course-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
            margin-bottom: 2rem;
        }

        .course-highlight-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            background: white;
            padding: 1rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .course-highlight-item:hover {
            border-color: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .course-highlight-item i {
            font-size: 1.4rem;
            color: var(--primary);
            background: rgba(139, 105, 20, 0.08);
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .course-highlight-item strong {
            display: block;
            font-size: 0.95rem;
            color: var(--text-main);
            font-weight: 700;
        }

        .course-highlight-item span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .course-intro-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* ================================================================
        🆕 بخش چرا آموزش پی‌پلاس؟
        ================================================================ */
        .why-course-section {
            padding: 6rem 2rem;
            background: var(--bg-card);
        }

        .why-course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-course-card {
            background: var(--bg-base);
            padding: 2rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .why-course-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(to left, var(--primary), var(--primary-light), var(--accent));
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }

        .why-course-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }

        .why-course-card:hover::before {
            transform: scaleX(1);
        }

        .why-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin: 0 auto 1.2rem;
            box-shadow: 0 8px 25px rgba(139, 105, 20, 0.25);
            transition: var(--transition);
        }

        .why-course-card:hover .why-icon {
            transform: rotate(-8deg) scale(1.1);
        }

        .why-course-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.7rem;
            color: var(--text-main);
        }

        .why-course-card p {
            color: var(--text-muted);
            font-size: 0.93rem;
            line-height: 1.8;
        }

        /* ================================================================
        🆕 بخش سرفصل‌های دوره (Curriculum)
        ================================================================ */
        .curriculum-section {
            padding: 6rem 2rem;
            background: var(--bg-alt);
        }

        .curriculum-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .curriculum-module {
            background: white;
            border-radius: var(--radius);
            margin-bottom: 1rem;
            border: 1px solid var(--border);
            overflow: hidden;
            transition: var(--transition);
        }

        .curriculum-module:hover {
            border-color: var(--primary-light);
            box-shadow: var(--shadow);
        }

        .module-header {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1.3rem 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .module-header:hover {
            background: var(--bg-base);
        }

        .module-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 800;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(139, 105, 20, 0.25);
        }

        .module-info {
            flex: 1;
        }

        .module-info h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
            color: var(--text-main);
        }

        .module-meta {
            font-size: 0.85rem;
            color: var(--text-muted);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .module-meta i {
            color: var(--primary);
        }

        .module-toggle {
            font-size: 1.1rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .curriculum-module.active .module-toggle {
            transform: rotate(180deg);
        }

        .module-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: var(--bg-base);
        }

        .curriculum-module.active .module-content {
            max-height: 600px;
            padding: 1rem 1.5rem 1.5rem;
        }

        .module-content ul {
            list-style: none;
        }

        .module-content ul li {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            padding: 0.6rem 0;
            font-size: 0.95rem;
            color: var(--text-muted);
            border-bottom: 1px dashed var(--border-light);
        }

        .module-content ul li:last-child {
            border-bottom: none;
        }

        .module-content ul li i {
            color: var(--primary);
            font-size: 1rem;
            flex-shrink: 0;
        }

        /* ================================================================
        🆕 بخش پکیج‌های آموزشی
        ================================================================ */
        .course-packages-section {
            padding: 6rem 2rem;
            background: var(--bg-card);
        }

        .course-packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: stretch;
        }

        .course-package-card {
            background: var(--bg-base);
            border-radius: var(--radius);
            padding: 2.5rem 2rem;
            border: 2px solid var(--border);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .course-package-card.featured {
            border-color: var(--primary);
            transform: scale(1.03);
            box-shadow: 0 15px 50px rgba(139, 105, 20, 0.15);
        }

        .course-package-badge {
            position: absolute;
            top: 20px;
            left: -35px;
            background: var(--primary);
            color: white;
            padding: 0.3rem 2.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            transform: rotate(-45deg);
            box-shadow: 0 4px 12px rgba(139, 105, 20, 0.3);
            z-index: 2;
        }

        .course-package-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }

        .course-package-card.featured:hover {
            transform: scale(1.03) translateY(-8px);
        }

        .course-package-header {
            text-align: center;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border);
            margin-bottom: 1.5rem;
        }

        .course-package-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 1rem;
            box-shadow: 0 8px 25px rgba(139, 105, 20, 0.25);
        }

        .course-package-header h3 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 0.3rem;
            color: var(--text-main);
        }

        .course-package-subtitle {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .course-package-price {
            font-size: 2.3rem;
            font-weight: 900;
            color: var(--primary);
        }

        .course-package-price small {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text-muted);
        }

        .course-package-features {
            list-style: none;
            margin-bottom: 2rem;
            flex: 1;
            padding: 0;
        }

        .course-package-features li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.6rem 0;
            font-size: 0.93rem;
            color: var(--text-muted);
        }

        .course-package-features li i {
            color: var(--secondary);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .course-package-features li.disabled {
            opacity: 0.4;
        }

        .course-package-features li.disabled i {
            color: var(--text-light);
        }

        .course-package-btn {
            width: 100%;
            padding: 1rem;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            font-family: inherit;
            margin-top: auto;
        }

        .course-package-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 105, 20, 0.3);
        }

        .course-package-card.featured .course-package-btn {
            background: var(--primary);
            color: white;
        }

        .course-package-card.featured .course-package-btn:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
        }

        /* ================================================================
        🆕 بخش نظرات دانشجویان (Testimonials)
        ================================================================ */
        .testimonials-section {
            padding: 6rem 2rem;
            background: var(--bg-alt);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: var(--transition);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 5rem;
            color: var(--primary-light);
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }

        .testimonial-stars {
            display: flex;
            gap: 0.2rem;
            margin-bottom: 1rem;
            color: #FFC107;
            font-size: 0.95rem;
        }

        .testimonial-text {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border-light);
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .testimonial-author h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
            color: var(--text-main);
        }

        .testimonial-author span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ================================================================
        بخش سوالات متداول (FAQ)
        ================================================================ */
        .faq-section {
            padding: 6rem 2rem;
            background: var(--bg-card);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-base);
            border-radius: var(--radius-sm);
            margin-bottom: 1rem;
            border: 1px solid var(--border);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: var(--primary-light);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.3rem 1.5rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--text-main);
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question i {
            font-size: 1.2rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 1.5rem 1.5rem;
        }

        .faq-answer p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        /* ================================================================
        بخش CTA
        ================================================================ */
        .cta-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
        }

        .cta-content {
            max-width: 650px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            color: white;
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .cta-content p {
            color: rgba(255,255,255,0.85);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-white {
            background: white;
            color: var(--primary);
            padding: 1rem 2rem;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-family: inherit;
        }

        .btn-white:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.2);
        }

        .btn-outline-white {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 2px solid rgba(255,255,255,0.5);
            transition: var(--transition);
            cursor: pointer;
            font-family: inherit;
        }

        .btn-outline-white:hover {
            background: white;
            color: var(--primary);
            border-color: white;
            transform: translateY(-4px);
        }

        /* ================================================================
        انیمیشن‌ها
        ================================================================ */
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-40px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes floatShape {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(2deg); }
        }

        @keyframes bounceBadge {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ================================================================
        واکنش‌گرا (Responsive)
        ================================================================ */
        @media (max-width: 992px) {
            .webdesign-hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .webdesign-hero-desc {
                margin-left: auto;
                margin-right: auto;
            }
            .webdesign-hero-features {
                justify-content: center;
            }
            .webdesign-hero-actions {
                justify-content: center;
            }
            .webdesign-hero-visual {
                order: -1;
                margin-bottom: 2rem;
            }
            .hero-mockup-wrapper {
                max-width: 400px;
                margin: 0 auto;
            }
            .floating-tech-badge {
                display: none;
            }
            .supervisor-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .supervisor-avatar-wrapper {
                margin: 0 auto;
            }
            .supervisor-stats {
                justify-content: center;
            }
            .process-grid::before {
                display: none;
            }
            .course-intro-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .course-intro-visual {
                order: -1;
                margin-bottom: 2rem;
            }
            .course-highlights {
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
                margin-bottom: 2rem;
            }
            .course-intro-actions {
                justify-content: center;
            }
            .course-floating-badge {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .webdesign-hero {
                padding: 4rem 1.5rem 3rem;
            }
            .webdesign-hero h1 {
                font-size: 2rem;
            }
            .supervisor-container {
                padding: 2rem;
            }
            .supervisor-avatar {
                width: 140px;
                height: 140px;
            }
            .package-card.featured {
                transform: none;
            }
            .package-card.featured:hover {
                transform: translateY(-8px);
            }
            .course-intro-section,
            .why-course-section,
            .curriculum-section,
            .course-packages-section,
            .testimonials-section {
                padding: 4rem 1.5rem;
            }
            .course-highlights {
                grid-template-columns: 1fr;
            }
            .course-package-card.featured {
                transform: none;
            }
            .course-package-card.featured:hover {
                transform: translateY(-8px);
            }
            .module-header {
                padding: 1rem;
            }
            .module-number {
                width: 42px;
                height: 42px;
                font-size: 1.1rem;
            }
            .module-info h3 {
                font-size: 1rem;
            }
        }

        @media (max-width: 600px) {
            .breadcrumb-section {
                margin-top: 70px;
            }
            .webdesign-hero-actions .btn {
                width: 100%;
            }
            .packages-grid {
                grid-template-columns: 1fr;
            }
            .cta-content h2 {
                font-size: 1.7rem;
            }
            .course-packages-grid {
                grid-template-columns: 1fr;
            }
            .course-intro-actions .btn {
                width: 100%;
            }
        }
